home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 2-3 ***
- ;
- ; Measures the performance of 1000 loads of AL from
- ; memory. (Use by renaming to TESTCODE, which is
- ; included by PZTEST.ASM (Listing 2-2). PZTIME.BAT
- ; (Listing 2-4) does this, along with all assembly
- ; and linking.)
- ;
- jmp Skip ;jump around defined data
- ;
- MemVar db ?
- ;
- Skip:
- ;
- ; Start timing.
- ;
- call ZTimerOn
- ;
- rept 1000
- mov al,[MemVar]
- endm
- ;
- ; Stop timing.
- ;
- call ZTimerOff